From: Derk-Jan Hartman Date: Sun, 25 Sep 2011 17:26:33 +0000 (+0000) Subject: Raise the specificity of the sortable header. X-Git-Tag: 1.31.0-rc.0~27426 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=0331427a34640dfe1b9dd866332a549ef1cfe953;p=lhc%2Fweb%2Fwiklou.git Raise the specificity of the sortable header. Many installations have something like: table.wikitable th {background:color;} which would override the background of the sortable header. --- diff --git a/skins/common/shared.css b/skins/common/shared.css index f80f8ad793..959e3b01eb 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -925,17 +925,17 @@ ol:lang(or) li { background-position: 0% 100%; } /* Table Sorting */ -th.headerSort { +table.sortable th.headerSort { background-image: url(images/sort_both.gif); cursor: pointer; background-repeat: no-repeat; background-position: center right; padding-right: 21px; } -th.headerSortUp { +table.sortable th.headerSortUp { background-image: url(images/sort_up.gif); } -th.headerSortDown { +table.sortable th.headerSortDown { background-image: url(images/sort_down.gif); }